*{
    margin: 0px;
    padding:0px;
    text-align: center;
}
h1{
    background-color: darkblue;
    color: white;
    height: 5rem;
    line-height: 4.5rem;
}
.choice{
   height: 165px;
   width:165px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
}
img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 5rem;
}
.choice:hover{
    background-color: black;
}
.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 5rem;
}
#user-score , #comp-score{
    font-size: 2rem;
}
#msg{
    background-color: black;
    color: white;
    font-size: 2rem;
    display: inline;
    border-radius: 1rem;
    padding: 0.8rem;
}
.msg-container{
    margin-top: 2.5rem;
}
@media screen and (max-width:600px){
    h1{
        font-size: 26px;
        height: 3.8rem;
    }
    img{
        height: 60px;
        width: 60px;
    }
    .choices{
        margin-top:0;
        margin-left: 1.8rem;
    }
    #rock{
        margin-left: 2rem;
    }
    #paper{
        margin-left: -2rem;
    }
    #scissor{
        margin-right: 4rem;
        margin-left: -2rem;
    }
    .score-board{
        margin-top: -0.5rem;
        gap: 2.5rem;
    }
    #user-score, #comp-score{
        font-size: 1.5rem;
    }
    .msg-container{
        margin-left: -0.5rem;
    }
    #msg{
        font-size: 1rem;
    }
    .choice:hover{
        background-color: white;
    }
}